home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / getdtablesize.c < prev    next >
C/C++ Source or Header  |  1988-06-19  |  741b  |  40 lines

  1. /* 
  2.  * getdtablesize.c --
  3.  *
  4.  *    Procedure to map from Unix getdtablesize system call to Sprite.
  5.  *
  6.  * Copyright 1986 Regents of the University of California
  7.  * All rights reserved.
  8.  */
  9.  
  10. #ifndef lint
  11. static char rcsid[] = "$Header: getdtablesize.c,v 1.1 88/06/19 14:31:20 ouster Exp $ SPRITE (Berkeley)";
  12. #endif not lint
  13.  
  14. #include "sprite.h"
  15.  
  16. #include "compatInt.h"
  17.  
  18.  
  19. /*
  20.  *----------------------------------------------------------------------
  21.  *
  22.  * getdtablesize --
  23.  *
  24.  *    Fake procedure for Unix getdtablesize call. 
  25.  *
  26.  * Results:
  27.  *    The number of descriptors used by Sprite is returned.
  28.  *
  29.  * Side effects:
  30.  *    None.
  31.  *
  32.  *----------------------------------------------------------------------
  33.  */
  34.  
  35. int
  36. getdtablesize()
  37. {
  38.     return(100);
  39. }
  40.